home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / nosvw304.zip / NOSGAS.ZIP / PUBLIC / NOSVIEW / POPMAIL < prev    next >
Text File  |  1992-12-31  |  4KB  |  119 lines

  1. =======                                             NOSview [301]
  2. popmail
  3. =======
  4.  
  5. [N.B.  This is different from the 'pop' command].
  6.  
  7. The Post Office Protocols (POP2 and POP3), are mail protocols
  8. designed for use in networks containing hosts that are normally
  9. turned off when they are not in use.  In this environment it is
  10. not possible for an SMTP mail server to deliver mail to these
  11. hosts because they are not always available.
  12.  
  13. The solution to this problem is to designate a mailbox server
  14. that is available to the network at all times and can accept SMTP
  15. mail for other hosts.  When a host comes on-line it uses POP to
  16. access the mail in its mailbox(es) on the mailbox server.
  17.  
  18. The advantage of using a POP server at an area mail gateway is
  19. that when mail arrives at the gateway for a station that may not
  20. be available, the gateway does not have to waste time trying to
  21. establish a connection with that station.  Instead it accepts the
  22. mail and places it in the addressee's mailbox, just as if the
  23. addressee were a normal user on the gateway system (that is, this
  24. is the same thing that is done with AX.25 BBSs).
  25.  
  26. As POP2 and POP3 are different and incompatible protocols, both
  27. the POP2 and POP3 servers should be started, to handle all POP
  28. requests from clients.
  29.  
  30. The POP server requires one data file called /popusers.
  31.  
  32. The POP protocols are very simple, with minimal error handling.
  33. When an error is encountered, an error message is generated and
  34. then the connection is terminated.  You then have to re-establish
  35. a connection to continue.
  36.  
  37.  
  38. _________________________________________________________________
  39. popmail addserver <host> [<seconds>] [<hh:mm-hh:mm>] <protocol>
  40.                                   <mailbox> <username> <password>
  41. _________________________________________________________________
  42. Add <host> as a pop server.  When <seconds> is given, a timer is
  43. started to query the host with that interval for mail.
  44.  
  45. If not specified no quering to the pop host will be started.  You
  46. have to do that manually with a 'kick'.
  47.  
  48. When <hh:mm-hh:mm> is given then only in that exact timeframe are
  49. queries to the host made (allowed).
  50.  
  51. Protocol is either POP2 or POP3, depending on the mail service
  52. the host is providing.  Note: pop2 is superceded by pop3.
  53.  
  54. <mailbox> is the mailbox name on the host from which mail has to
  55. be picked up.
  56.  
  57. <username> and <password> are this system's validation parameters
  58. for the host (in /popusers).
  59.  
  60. Note that on entering this command the host name is looked up.
  61. If non existent an error message is presented.
  62.  
  63. >> Example:  (all on one line):
  64.  
  65.    popmail addserver ns9bob 1800 00:00-03:00 pop3 ns9liz ns9liz
  66.                                                         lizpasswd
  67.  
  68.  
  69. _________________________________________________________________
  70. popmail dropserver <host>
  71. _________________________________________________________________
  72. Drop host from the list of pop servers to be queried.   All
  73. references to the entry are deleted from the current system.
  74.  
  75. >> Example:  popmail dropserver ns9bob
  76.  
  77.  
  78.  
  79. _________________________________________________________________
  80. popmail kick
  81. _________________________________________________________________
  82. Kick the local POP client, to get mail from the server.  This
  83. command is needed when no interval is specified with the 'popmail
  84. addserver' command.
  85.  
  86.  
  87.  
  88. _________________________________________________________________
  89. popmail list
  90. _________________________________________________________________
  91. List the current popmail server table.
  92.  
  93.  
  94.  
  95. _________________________________________________________________
  96. popmail quiet [on|off]                               Default: off
  97. _________________________________________________________________
  98. Display or set the POP quiet flag.
  99.  
  100. This flag determines whether the bell sounds when the system
  101. announces that incoming mail has arrived.  When quiet is set to
  102. 'off' you hear the bell.
  103.  
  104. >> Example:  pop quiet on
  105.  
  106.  
  107. _________________________________________________________________
  108. popmail trace [<level>]
  109. _________________________________________________________________
  110. Display or set the trace level of POP sessions.
  111.  
  112. <level> = 0:  no trace
  113.           1:  serious errors reported
  114.           2:  transient errors reported
  115.           3:  session progress reported
  116.  
  117. All trace output goes to the session log file.
  118.  
  119.